home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 8 (Internal Edition) / Apple R&P Lib Internal v8.0.iso / 3-Presentations / Markets / K-12 Education / HyperCard in Education / Towers of Hanoi / card_3043.txt < prev    next >
Text File  |  1990-02-20  |  4KB  |  130 lines

  1. -- card: 3043 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2783
  5. -- name: 
  6.  
  7.  
  8. -- part 11 (field)
  9. -- low flags: 81
  10. -- high flags: 2004
  11. -- rect: left=59 top=61 right=218 bottom=454
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 2
  16. -- text size: 10
  17. -- style flags: 0
  18. -- line height: 13
  19. -- part name: Author
  20.  
  21.  
  22. -- part 12 (button)
  23. -- low flags: 80
  24. -- high flags: 8003
  25. -- rect: left=378 top=189 right=211 bottom=446
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 0 / 0
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: OK
  34. ----- HyperTalk script -----
  35. on mouseUp
  36.   set the visible of card button OK to false
  37.   set the visible of card field Author to false
  38. end mouseUp
  39.  
  40.  
  41.  
  42. -- part 10 (field)
  43. -- low flags: 81
  44. -- high flags: 0007
  45. -- rect: left=59 top=61 right=218 bottom=453
  46. -- title width / last selected line: 0
  47. -- icon id / first selected line: 0 / 0
  48. -- text alignment: 0
  49. -- font id: 2
  50. -- text size: 12
  51. -- style flags: 0
  52. -- line height: 14
  53. -- part name: Help
  54. ----- HyperTalk script -----
  55. on mouseUp
  56.   set the visible of card field Help to not visible of card field Help
  57. end mouseUp
  58.  
  59.  
  60.  
  61. -- part 14 (button)
  62. -- low flags: 00
  63. -- high flags: A002
  64. -- rect: left=16 top=319 right=340 bottom=76
  65. -- title width / last selected line: 0
  66. -- icon id / first selected line: 0 / 0
  67. -- text alignment: 1
  68. -- font id: 0
  69. -- text size: 12
  70. -- style flags: 0
  71. -- line height: 16
  72. -- part name: Return
  73. ----- HyperTalk script -----
  74. on mouseUp
  75.   global returncard
  76.   go to returncard
  77. end mouseUp
  78.  
  79.  
  80.  
  81. -- part contents for card part 10
  82. ----- text -----
  83. Tower of Hanoi Instructions:
  84.  
  85. ( Click on the title "Tower of Hanoi" above to hide this information. )
  86.  
  87. This stack demonstrates the use of a recursive algorithm to solve the classic Tower of Hanoi problem.  The solution involves movement of a stack of disks from one of three poles to another.  There are two very simple rules: only one disk can be moved at a time, and no disk can ever be placed on top of a smaller one.  Legend has it that there is an order of Tibetan monks who have been laboring patiently for centuries to move a tower of one hundred disks.  The completion of their task will bring the end of the universe.  Just how worried should you be?  You can use this stack to find out.
  88.  
  89. Underneath the title button are four buttons that control the operation of this stack.  From left to right they are "Make Tower," "Set Tower," "Move Tower," and "See Algorithm."
  90.  
  91. Click "Make Tower" to create a stack of between 0 and 7 disks.  The stack is automatically positioned on the left pole.
  92.  
  93. To reset the position of the stack of disks, click "Set Tower."  A dialog box appears giving you the choice of setting the tower on the left, center, or right poles.
  94.  
  95. To move the stack of disks using the Tower of Hanoi algorithm, click "Move Tower."  Again a dialog box appears allowing you to select the destination pole.  The remaining pole, which is neither the source nor the destination, is automatically used as the auxiliary pole.  The current depth of recursion and the number of moves are displayed beneath the base of the disk holder.  By testing the operation of the algorithm on towers of different heights, you should be able to determine the maximum depth of recursion and the total number of moves in terms of the number of disks in the stack.  (See the script of the title button for the answers, and don't cheat!)
  96.  
  97. To examine the recursive Tower of Hanoi movement handler "moveTower," click "See Algorithm."  You may also view the script of the background by typing Command-Option-B to examine the other handlers that support the operation of this stack.
  98.  
  99. Clicking on the title "Tower of Hanoi" above will hide this information when visible, and will otherwise display the authorship of the stack.
  100.  
  101.  
  102. -- part contents for card part 11
  103. ----- text -----
  104. Written by Jeffry A. Spain, M.D., '71
  105.  
  106. The HyperSchool
  107. Cincinnati Country Day School
  108. Attn: Joseph F. Hofmeister
  109. Computer Coordinator
  110. 6905 Given Road
  111. Cincinnati, Ohio 45243
  112.  
  113. Telephone: 513-561-7298
  114. AppleLink: K0197
  115.  
  116. -- part contents for background part 49
  117. ----- text -----
  118. Depth of Recursion
  119.  
  120. -- part contents for background part 50
  121. ----- text -----
  122. 0
  123.  
  124. -- part contents for background part 53
  125. ----- text -----
  126. Number of Moves
  127.  
  128. -- part contents for background part 52
  129. ----- text -----
  130. 0